home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Misc / msql-1.0.6 / src / tests / rtest.src / 1.test < prev    next >
Text File  |  1994-12-12  |  249b  |  18 lines

  1. #
  2. # Just setup the tables for the test.
  3. #
  4.  
  5. create table test (
  6.         user    char(10) primary key,
  7.         age     int,
  8.         phone   char(20)
  9. )
  10. \p\g
  11.  
  12.  
  13. create table test2 (
  14.         user    char(10) not null,
  15.         fullname    char(30)
  16. ) \p\g
  17.  
  18.